Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

regexp-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regexp-polyfill

Polyfill RegExp : Named capture

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
712
increased by36.66%
Maintainers
1
Weekly downloads
 
Created
Source

Polyfill RegExp to support named captures

Tested on IE 10+

Install
npm i regexp-polyfill --save
Documentation

upcoming-regexp-features

WARN The polyfill only works when creating RegExp with new. The syntax /pattern/flagswon't work !

Currently only named captures are polyfilled.

Example:
const pattern = new RegExp(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2}));
const result = pattern.exec('2017-07-10');
// result.groups.year === '2017'
// result.groups.month === '07'
// result.groups.day === '10'

FAQs

Package last updated on 16 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc